home *** CD-ROM | disk | FTP | other *** search
/ Hardcore Gamer Resource Kit / Hardcore Gamer Resource Kit - Disc 2.iso / Pc / P_R / RISE101.ZIP / nordic.pet < prev    next >
Text File  |  1996-04-10  |  2KB  |  94 lines

  1. ; Political Effects File
  2. ;
  3. ; types of political events:
  4. ;
  5. ;    0=THREAT, 
  6. ;    1=PEACE, 
  7. ;    2=FRIENDLY, 
  8. ;    3=TAUNT, 
  9. ;    4=Movement
  10. ;    5=Attack,
  11. ;    6=Capture,        // military takeover of city
  12. ;    7=Takeover,        // peaceful takeover of city
  13. ;    8=Oust,            // oust a player from a territory which he had owned
  14. ;    9=TradeImbalance
  15. ;
  16. ; relation to victim flags (add together to combine)
  17. ;
  18. ;    Alliance=1,        // allies with victim
  19. ;    Trade=2,        // trade partners with victim
  20. ;    Ignorance=4,    // doesn't know victim
  21. ;    Embargo=8,        // embargo with victim
  22. ;    AtWar=16,        // at war with victim
  23. ;    Self=32,        // is victim
  24. ;
  25. ;
  26. ; territory flags (add together to combine)
  27. ;
  28. ;    Unknown=1,
  29. ;    Owns=2,
  30. ;    WantsBack=4,
  31. ;    WantsToOwn=8,
  32. ;    DoesNotWant=16, 
  33. ;    All=255
  34. ;
  35. ;
  36. ; victim type flags (add together to combine)
  37. ;
  38. ;    Civilian=1,
  39. ;    Military=2,
  40. ;    CivKilled=4,
  41. ;    MilKilled=8,
  42. ;    AllKilled=16,
  43. ;    Any=255
  44. ;
  45. ;
  46. ; type,    relation,    territory,    victim,    change
  47. ;
  48. ; THREATEN (ally, me)
  49. pet=0,    1,        255,        255,        -10
  50. pet=0,    32,        255,        255,        -25
  51.  
  52. ; PEACE (ally, me)
  53. pet=1,    1,        255,        255,        5
  54. pet=1,    32,        255,        255,        25
  55.  
  56. ; FRIENDLY (ally, me)
  57. pet=2,    1,        255,        255,        2
  58. pet=2,    32,        255,        255,        10
  59.  
  60. ; TAUNTS (ally, me)
  61. pet=3,    1,        255,        255,        -2
  62. pet=3,    32,        255,        255,        -10
  63.  
  64. ; MOVEMENT (victim indicates type of unit moving, relation = who is moving)
  65. ; type,    relation,    territory,    victim,    change
  66.  
  67. ; movement of civilian unit in my territory / embargo
  68. pet=4,8,2,1,-5,6
  69.  
  70. ; movement of military unit in my territory / ally
  71. pet=4,1,2,2,-5,7
  72.  
  73. ; movement of military unit in my territory / tp
  74. pet=4,2,2,2,-9,7
  75.  
  76. ; movement of military unit in my territory / embargo
  77. pet=4,8,2,2,-12,7
  78.  
  79. ; any other movement
  80. pet=4,255,255,255,-1
  81.  
  82. ; ATTACKS
  83. pet=5,  1,              255,            16,             -6
  84.  
  85. ; CAPTURES  (military takeovers of cities)
  86. pet=6,  1,              255,            255,            -15,9
  87.  
  88. ; TAKEOVERS (peaceful takeovers of cities)
  89. pet=7,  1,              255,            255,            -10
  90.  
  91.  
  92.  
  93.  
  94.